home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / mc51bugs / q33821 < prev    next >
Text File  |  1988-08-08  |  765b  |  28 lines

  1. Q33821 Warning C4093 Generated Incorrectly
  2. C Compiler
  3. 5.10   | 5.10
  4. MS-DOS | OS/2
  5.  
  6. Summary:
  7.    The code fragment below generates warning C4093: "unescaped
  8. newline in character constant in non-active code" when it is compiled
  9. with warning level 3 (/W3). This warning is not generated with Version
  10. 5.00 of the C compiler.
  11.    Microsoft has confirmed this to be a problem in Version 5.10
  12. of the C compiler. We are researching this problem and will post new
  13. information as it becomes available.
  14.    The warning will not affect code generation; it can be ignored.
  15.    The following code fragment demonstrates this problem:
  16.  
  17. char *t()
  18. {
  19. #ifdef NOTDEFINED
  20.     return "\"";
  21. #endif
  22.     return "\"";
  23. }
  24.  
  25.  
  26. Keywords:  buglist5.10
  27. Updated  88/08/09 05:59
  28.